home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Utilities / Remotes / Source / Prefs.h < prev    next >
Encoding:
Text File  |  1992-09-22  |  528 b   |  25 lines

  1. /*---------------------------------------------------------------------------
  2. Prefs.h - Header file the Prefs.m class.
  3. -----------------------------------------------------------------------------*/
  4. #import <objc/Object.h>
  5.  
  6. @interface Prefs:Object
  7. {
  8.     id    debugMatrix;
  9.     id    prefsWindow;
  10.     id    configForm;
  11.     id  theHLM;
  12. }
  13.  
  14. - init;
  15. - setDebugMatrix:anObject;
  16. - setPrefsWindow:anObject;
  17. - setConfigForm:anObject;
  18. - setHLM:anObject;
  19. - initPrefs:sender;
  20. - prefsRevert:sender;
  21. - prefsSet:sender;
  22. - showPrefsWindow:sender;
  23.  
  24. @end
  25.